home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedMenuFile.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  372 b   |  21 lines

  1. /*    ================
  2.  *    PedMenuFile.hh
  3.  *    ================
  4.  */
  5.  
  6. #pragma once
  7.  
  8. #include "PedMenu.hh"
  9.  
  10. class PedMenuFile : public PedMenu {
  11. public:
  12.     PedMenuFile();
  13.     virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
  14.     virtual void DoMenuItem(short inItem);
  15. protected:
  16.     PedCommand *mNewCmd;
  17.     PedCommand *mOpenCmd;
  18.     PedCommand *mCloseCmd;
  19.     PedCommand *mQuitCmd;
  20. };
  21.